home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Filezilla Server / FileZilla_Server-0_9_41.exe / source / xml_utils.h < prev   
C/C++ Source or Header  |  2011-11-06  |  236b  |  14 lines

  1. #ifndef __XML_UTILS_H__
  2. #define __XML_UTILS_H__
  3.  
  4. class TiXmlElement;
  5.  
  6. namespace XML
  7. {
  8.  
  9. CStdString ReadText(TiXmlElement* pElement);
  10. void SetText(TiXmlElement* pElement, const CStdString& text);
  11.  
  12. }
  13.  
  14. #endif //__XML_UTIL    S_H__